bufio.Scanner.maxTokenSize (field)

5 uses

	bufio (current package)
		scan.go#L32: 	maxTokenSize int       // Maximum size of a token; modified by tests.
		scan.go#L93: 		maxTokenSize: MaxScanTokenSize,
		scan.go#L200: 			if len(s.buf) >= s.maxTokenSize || len(s.buf) > maxInt/2 {
		scan.go#L208: 			newSize = min(newSize, s.maxTokenSize)
		scan.go#L277: 	s.maxTokenSize = max